home *** CD-ROM | disk | FTP | other *** search
- stop();
- once = false;
- onEnterFrame = function()
- {
- myLoaded = Math.round(getBytesLoaded());
- myTotal = Math.round(getBytesTotal());
- myPercent = myLoaded / myTotal;
- myText = Math.round(myPercent * 100) + "%";
- bar.gotoAndStop(Math.round(myPercent * 100));
- if(myLoaded == myTotal and once == false)
- {
- once = true;
- nextFrame();
- }
- };
- var hide = new ContextMenu();
- hide.hideBuiltInItems();
- _root.menu = hide;
-